267a3b9a838721638c309d0e9b315efb60a2becf,plugins/org.jboss.tools.openshift.core/src/org/jboss/tools/openshift/core/server/OpenShiftServerUtils.java,OpenShiftServerUtils,getService,#IServerAttributes#Connection#,358

Before Change


		}
		String projectName = OpenShiftResourceUniqueId.getProjectName(uniqueId);
		List<IService> services = connection.getResources(ResourceKind.SERVICE, projectName);
		return OpenShiftResourceUniqueId.getByUniqueId(uniqueId, services);
	}

	public static String getRouteURL(IServerAttributes server) {

After Change


		}
		String projectName = OpenShiftResourceUniqueId.getProjectName(uniqueId);
		List<IService> services = connection.getResources(ResourceKind.SERVICE, projectName);
		IService service = OpenShiftResourceUniqueId.getByUniqueId(uniqueId, services);
		if (service != null) {
			WatchManager.getInstance().startWatch(service.getProject(), connection);
		}
		return service;
	}

	public static String getRouteURL(IServerAttributes server) {